Skip to content

Instantly share code, notes, and snippets.

@duyetpt
duyetpt / measure-software-simplicity.md
Last active August 19, 2026 21:16
Meansure software complexity
name measure-software-simplicity
description Measure and report how well a design, pull request, module, service, refactor, or repository follows software-simplicity principles such as Single Responsibility, deep modules, single knowledge ownership, low change amplification, low caller burden, valid-state design, actionable failures, controlled scope, and evidence-based performance work. Use for architecture assessments, code reviews, maintainability audits, refactoring baselines, before-and-after comparisons, and engineering quality reports.

Measure Software Simplicity

Assess simplicity with Goal-Question-Metric (GQM), repository evidence, and a calibrated scorecard. Treat measurements as decision support.

Rules

@aravindnc
aravindnc / Activate_Windows_8_8.1_10_and_11_Pro_for_Free.md
Created February 19, 2024 17:15
Activate Windows 8, 8.1, 10 and 11 Pro for Free

Activate Windows 8, 8.1, 10 and 11 Pro for Free

A guide how to get and activate Windows 8, 8.1, 10 and 11 Pro for free!

NOTE

If you see the Windows keyboard button in this guide; and you can't find it on your keyboard, you likely have/had Windows 10 which has the button . If you can't find that one, you likely have a PC that has been upgraded to Windows 8/8.1/10/11 from Windows 8.1/8/7/Vista/XP and other ones. If you have one of those, refer the Windows key button to as yours. A list of them is below:

Windows key buttons

- Windows 11

- Windows 10

@IgorWarzocha
IgorWarzocha / GPT-5.6-model-selection-guide.md
Created July 11, 2026 12:12
https://artificialanalysis.ai/ - slopanalysis - comparison for all 5.6 models

GPT‑5.6 Sol, Terra, and Luna: a practical model-selection guide

Data snapshot: 11 July 2026
Primary source: Artificial Analysis GPT‑5.6 launch analysis and its live LLM leaderboard
Scope: all 15 combinations of Sol, Terra, and Luna at low, medium, high, xhigh, and max reasoning effort.

Short answer: Default to Luna for volume work and Sol when quality matters. Treat Terra as a dominated middle tier, not a default. Raise reasoning effort before moving to a larger model when the next effort remains on the better price/intelligence frontier. Use Sol max only where the last few quality points can change the outcome.


Reduce Godot Mono C# Release APK Size

Before

$ du -sh before.apk  
97M     before.apk

After

$ du -sh after.apk  
32M     after.apk
@TuLingsang
TuLingsang / config.json
Last active August 19, 2026 21:11
{
"serverAddress": "mc.tujiang.de5.net",
"bedrock": false,
"refreshSeconds": 30,
"siteTitle": "图酱的服务器",
"tagline": "欢迎来玩!",
"showJoinAddress": true,
"showServerIpPort": false,
"oopzInvite": "https://oopz.cn/i/DYxpgp",
"qqGroup": "",
@scottoffen
scottoffen / ContentType.cs
Last active August 19, 2026 21:10
C# ContentType Enum full source code
using System;
using System.Reflection;
namespace Grapevine
{
public enum ContentType
{
[Metadata(Value = "application/x-authorware-bin", IsBinary = true)]
AAB,
@ConnerWill
ConnerWill / ANSI-escape-sequences.md
Last active August 19, 2026 21:07
ANSI Escape Sequences cheatsheet

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@FranklinGothic
FranklinGothic / server.txt
Last active August 19, 2026 21:12
boroCTF ngrok/add
please2
@burritosoftware
burritosoftware / vmware-fedora.md
Last active August 19, 2026 21:03
How to actually install VMware Workstation on Fedora

How to actually install VMware Workstation on Fedora

also known as vmware: fix ur crap


  1. Download Workstation Pro from VMware
  2. chmod +x the bundle file, then sudo sh [vmware].bundle
  3. Follow this KB article to install dependencies (notably, you want to get kernel-devel as this contains the required headers, this is the only thing I had to install)
  4. Follow the first impatient method here to compile and install the required kernel modules that VMware's installer will fail to do
  5. Sign the kernel modules if you have Secure Boot enabled by following this KB article. Notably, you need to change where Step 2 is looking for the kernel scripts by changing it to:
sudo /usr/src/kernels/`uname -r`/scripts/sign-file sha256 ./MOK.priv ./MOK.der `modinfo -n vmmon`

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.